home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 2: CDPD 1 / Almathera Ten on Ten - Disc 2: CDPD 1.iso / pd / 351-375 / 353 / aztecarp / exit.c < prev    next >
Encoding:
Text File  |  1995-03-14  |  151 b   |  12 lines

  1. /* Not really arp specific, but need to prevent horrendous linker errors */
  2.  
  3. int (*cls_)();
  4.  
  5. exit(int code)
  6. {
  7.     if (cls_)
  8.         (*cls_)();
  9.  
  10.     _exit(code);
  11. }
  12.